home *** CD-ROM | disk | FTP | other *** search
- //------ Tea Cup with Fork ...9/29/92 M.Miller
-
- #include "colors.inc"
- #include "shapes.inc"
- #include "world7.inc"
- #include "cup.inc"
- #include "tile.inc"
- #include "fork.inc"
-
- camera {
- location <0 240 -500>
- direction <0 0 4>
- up <0 1 0>
- right <1.3 0 0>
- look_at <0 30 0>
- }
-
-
- object { light_source { <400 270 -660 > color White }}
- object { light_source { <-400 1270 -1660 > color Gold }}
-
- //---- Players
- composite { Cup rotate <0 -40 0> translate <0 2 0> }
- object { Fork rotate <0 0 7.5> scale <2.8 2.8 2.8> rotate <0 -130 0> translate <-55 2 -10> }
- object { World7 scale <1 1 1> }
-
- //--- Grout
- object {
- plane { <0 1 0> 0 }
- texture {
- color White
- ambient .2
- }
- }
-
- //----Ceiling
- object {
- plane { <0 1 0> 3000 }
- texture {
- color White
- ambient .2
- }
- }
-
- //----Reflection Wall
- object {
- plane { <0 0 1> -4000 }
- texture {
- color Copper
- ambient .2
- }
- }
-
- //----Reflection Wall
- object {
- plane { <1 0 0> 4000 }
- texture {
- color Blue
- ambient .2
- }
- }
-
-
-
-
- ə